home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 December
/
PCWorld_2007-12_cd.bin
/
domacnost a kancelar
/
autoit
/
autoit-v3-setup.exe
/
Examples
/
Helpfile
/
Default.au3
< prev
next >
Wrap
Text File
|
2007-09-08
|
405b
|
13 lines
WinMove("","",default, default, 200,300) ; just resize the active window (no move)
MyFunc2(Default,Default)
Func MyFunc2($Param1 = Default, $Param2 = 'Two', $Param3 = Default)
If $Param1 = Default Then $Param1 = 'One'
If $Param3 = Default Then $Param3 = 'Three'
MsgBox(0, 'Params', '1 = ' & $Param1 & @LF & _
'2 = ' & $Param2 & @LF & _
'3 = ' & $Param3)
EndFunc